home *** CD-ROM | disk | FTP | other *** search
- program tPack;
-
- uses
- { Splash, } {normally this is how you call the splashscreen; replaced for demo}
- Forms,
- Splash in 'SPLASH.PAS' {SplashScreenForm},
- DemoPack in 'DEMOPACK.PAS' {tPack2Form},
- About in 'ABOUT.PAS' {AboutBoxForm},
- Debug in 'DEBUG.PAS' {DebugDlg},
- LoginDlg in 'LOGINDLG.PAS' {LoginDialogForm},
- ErrorMsg in 'ERRORMSG.PAS' {ErrorDialogForm},
- DocProps in 'DOCPROPS.PAS' {ComponentPropForm},
- Working in 'WORKING.PAS' {WorkingForm},
- PasUtils in 'PASUTILS.PAS',
- ToolProc in 'TOOLPROC.PAS',
- Shells in 'SHELLS.PAS',
- OkCore in 'OKCORE.PAS',
- Bitbox in 'BITBOX.PAS',
- IniLink in 'INILINK.PAS',
- Restorer in 'RESTORER.PAS',
- Debugctl in 'DEBUGCTL.PAS',
- UserInfo in 'USERINFO.PAS',
- UserBDE in 'USERBDE.PAS',
- UserWin in 'USERWIN.PAS',
- UserNetW in 'USERNETW.PAS',
- UserDOS in 'USERDOS.PAS',
- Toolbar in 'TOOLBAR.PAS',
- Resizer in 'RESIZER.PAS',
- TxtGrid in 'TXTGRID.PAS',
- RegTPack in 'REGTPACK.PAS',
- Invoice in 'INVOICE.PAS' {InvoiceForm};
-
- {$R *.RES}
-
- begin
- Application.Title := 'Informal Component Demo Pack';
- Application.CreateForm(TtPack2Form, tPack2Form);
- Application.Run;
- end.
-